6d564c5a2d42331a02730e6574d108158763d982,src/com/t_oster/liblasercut/drivers/GenericGcodeDriver.java,GenericGcodeDriver,connect,#ProgressListener#,675
Before Change
}
else if (UPLOAD_METHOD_FILE.equals(uploadMethod))
{
if (getExportPath() != null && getExportPath().length() > 0)
{
throw new IOException("Export Path must be set to upload via File method.");
}
After Change
}
else if (UPLOAD_METHOD_FILE.equals(uploadMethod))
{
if (getExportPath() == null || getExportPath().equals(""))
{
throw new IOException("Export Path must be set to upload via File method.");
}